(dired-between-files): Add `^. find' as an alternative
authorGerd Moellmann <gerd@gnu.org>
Tue, 7 Nov 2000 17:02:28 +0000 (17:02 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 7 Nov 2000 17:02:28 +0000 (17:02 +0000)
to the regular expression, for find-dired.

lisp/dired.el

index 795ca3c30058344dee127dd3a8b1b3a36377d2d5..926bbee73a47c9427a39e58b1ae9373857e663ba 100644 (file)
@@ -2201,7 +2201,7 @@ FILES is the list of marked files."
   ;; Point must be at beginning of line
   ;; Should be equivalent to (save-excursion (not (dired-move-to-filename)))
   ;; but is about 1.5..2.0 times as fast. (Actually that's not worth it)
-  (or (looking-at "^$\\|^. *$\\|^. total\\|^. wildcard\\|^. used")
+  (or (looking-at "^$\\|^. *$\\|^. total\\|^. wildcard\\|^. used\\|^. find")
       (and (looking-at dired-subdir-regexp)
           (save-excursion (not (dired-move-to-filename))))))